home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Power Bytes: Money & Finance
/
PowerBytes Money and Finance CD-ROM 01
/
PowerBytes Money and Finance CD-ROM 01.iso
/
Demos
/
TrueBASIC Demo
/
User's Guide
/
Triangle
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1985-06-20
|
209 b
|
13 lines
|
[
TEXT/TRUE
]
! A picture of a triangle.
!
PICTURE Triangle
PLOT 0,0; 1,1; 1,0; 0,0 ! A triangle
END PICTURE
SET WINDOW 0, 15, 0, 10 ! Set the window
DRAW Triangle ! Draw the triangle
END